home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / dviware / dviapollo / header.h < prev    next >
C/C++ Source or Header  |  1990-10-01  |  936b  |  45 lines

  1. /*
  2.   Modified on 27-Sep-87 by Leonard N. Zubkoff:
  3.     Added AAFpath and name mappings for APOLLO.
  4. */
  5.  
  6. /* @(#)header.h    1.6 2/18/87 */
  7. #include "commands.h"
  8. #include <stdio.h>
  9. #include "boolean.h"
  10. #define  DVIFORMAT         2
  11. #ifndef FONTAREA
  12. #define FONTAREA       "/tex/fonts/aaf118"
  13. #endif
  14.  
  15. #define  STRSIZE         257
  16.  
  17. #define XDEFAULT 0
  18. #define YDEFAULT 0
  19.  
  20. char *malloc();
  21. char *sprintf();
  22. char *strcpy();
  23. char *getenv();
  24. char *rindex();
  25. char *index();
  26.  
  27. #ifndef apollo
  28. char *PXLpath; /* PXL path name for search */
  29. #else
  30. char *AAFpath; /* AAF path name for search */
  31. #endif
  32. BOOLEAN preload; /*Whether to preload fonts when scanning over them. */
  33.  
  34. typedef int *CharImage;
  35.  
  36. #ifdef apollo
  37. #define lock_canvas        BeginPageDisplay
  38. #define unlock_canvas        EndPageDisplay
  39. #define clearscreen        ClearScreen
  40. #define black_box        DrawBox
  41. #define showerror        ShowError
  42. #define clearerror        ClearError
  43. #define DVIW            DVIwindow
  44. #endif
  45.